-#![allow(unstable)]
+#![feature(collections, core, io, os, path)]
extern crate "rustc-serialize" as rustc_serialize;
extern crate cargo;
#![deny(unused)]
-#![allow(unstable)]
+#![feature(collections, core, hash, io, libc, os, path, std_misc, unicode)]
#![cfg_attr(test, deny(warnings))]
extern crate libc;
-#![allow(unstable)]
+#![feature(core, io)]
extern crate curl;
extern crate "rustc-serialize" as rustc_serialize;
-#![allow(unstable)]
+#![feature(collections)]
extern crate hamcrest;
extern crate cargo;
let p = project("foo")
.file("Cargo.toml", basic_bin_manifest("foo").as_slice())
.file("src/foo.rs", r#"
- #![allow(unstable)]
+ #![feature(test)]
extern crate test;
fn hello() -> &'static str {
"hello"
fn main() {}
"#)
.file("build.rs", r#"
- #![allow(unstable)]
+ #![feature(os)]
fn main() {
std::os::set_exit_status(101);
}
#![deny(warnings)]
+#![feature(collections, core, io, os, path, rustc_private, std_misc)]
extern crate cargo;
extern crate flate2;